Go To _fonts.scss (assets/scss/custom/fonts/_fonts.scss )
if you want to change another font-family Go to the site Google Fonts And Select One font Family and import In to style.css file

And paste Your Selected font-family in _fonts.scss

And add the Your Selected font-family in _bootstrap-styles.scss(assets/scss/bootstrap/_bootstrap-styles.scss)
body {
margin: 0;
font-family: "Roboto", sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 1.5;
color: $default-color;
text-align: left;
background-color: $background;
}
Note : After Changing font you must run gulp command i.e, gulp watch . Refer gulp page for more gulp commands click here.
To change Menu icons, open html page and go through app-sidebar
section, in that section you will find feather icons of menu in i
tag, there you can replace previous icon with your icon. Example as shown in below
Go To "assets/images/brand" folder and replace your logo with Previous Logos within in image size. note: Please don't increase logo sizes. Replace your logo within given image size. otherwise the logo will not fit in particular place it disturbs the template design.
To change Date Format, you have to add below js (dateFormat: "yy-mm-dd") in respective folder (assets/js/form-elements.js)
To enable RTL Version you have to open custom.js (assets/js/custom.js) file
and remove comments for rtl as shown in below
/******* RTL VERSION *******/
// $('body').addClass('rtl');
rtl as shown
below
/******* RTL VERSION *******/
$('body').addClass('rtl');
To enable Dark Theme you have to open custom.js (assets/js/custom.js) file
and remove comments for dark-mode as shown in below
//---- Dark mode ----- //
// $('body').addClass('dark-mode');
// $('body').removeClass('light-mode');
// $('body').removeClass('transparent-mode');
dark-mode as
shown below
//---- Dark mode ----- //
$('body').addClass('dark-mode');
$('body').removeClass('light-mode');
$('body').removeClass('transparent-mode');
To enable Transparent Theme you have to open custom.js
(assets/js/custom.js) file
and remove comments for transparent-mode as shown in below
//---- Transparent mode ----//
// $('body').addClass('transparent-mode');
// $('body').removeClass('light-mode');
// $('body').removeClass('dark-mode');
transparent-mode as shown below
//---- Transparent mode ----//
$('body').addClass('transparent-mode');
$('body').removeClass('light-mode');
$('body').removeClass('dark-mode');
To enable Color-header you have to open custom.js (assets/js/custom.js) file
and remove comments for color-header as shown in below
/******* Header Styles ********/
//$('body').addClass('color-header')
color-header
as shown below
/******* Header Styles ********/
$('body').addClass('color-header')
To enable Dark-header you have to open custom.js (assets/js/custom.js) file
and remove comments for dark-header as shown in below
/******* Header Styles ********/
//$('body').addClass('dark-header');
dark-header as
shown below
/******* Header Styles ********/
$('body').addClass('dark-header');
To enable Light-header you have to open custom.js (assets/js/custom.js) file
and remove comments for light-header as shown in below
/******* Header Styles ********/
//$('body').addClass('light-header');
light-header
as shown below
/******* Header Styles ********/
$('body').addClass('light-header');
To enable Gradient-header you have to open custom.js (assets/js/custom.js) file
and remove comments for gradient-header as shown in below
/******* Header Styles ********/
//$('body').addClass('gradient-header');
gradient-header as shown below
/******* Header Styles ********/
$('body').addClass('gradient-header');
To enable Boxed-Layout you have to open custom.js (assets/js/custom.js) file
and remove comments for layout-boxed as shown in below
/*Layout-width Styles*/
// $('body').addClass('layout-boxed');
layout-boxed
as shown below
/*Layout-width Styles*/
$('body').addClass('layout-boxed');
To enable Scrollable-Layout you have to open custom.js
(assets/js/custom.js) file
and remove comments for scrollable-layout as shown in below
/*Header-Position Styles*/
// $('body').addClass('scrollable-layout');
scrollable-layout as shown below
/*Header-Position Styles*/
$('body').addClass('scrollable-layout');
To enable Dark mode you have to open
landing.js
(assets/js/landing.js) file and remove comments for
Dark Mode as shown in below
// DARK MODE
// $('body').addClass('dark-mode');
dark-mode
as shown below
// DARK MODE
$('body').addClass('dark-mode');
To enable RTL you have to open
landing.js
(assets/js/landing.js) file and remove comments for
RTL as shown in below
// RTL
// $('body').addClass('rtl');
RTL
as shown below
// RTL
$('body').addClass('rtl');